old_str = "Good morning"

new_str = old_str.upper()

print(new_str)

#output
#GOOD MORNING